home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / bloop.swf / scripts / DefineSprite_129_bloopCreator / frame_1 / DoAction.as
Text File  |  2007-09-27  |  685b  |  24 lines

  1. _root.setFrame(this);
  2. onEnterFrame = function()
  3. {
  4.    _root.checkFrame(this);
  5.    _Y = -10;
  6.    _X = random(Stage.width);
  7.    num = random(100 - _root.level);
  8.    nump = random(_root.level * 600);
  9.    if(num == 1)
  10.    {
  11.       _root.depth = _root.depth + 1;
  12.       _root.attachMovie("bloop","bloop" + _root.depth,_root.depth);
  13.       eval("_root.bloop" + _root.depth)._x = _X;
  14.       eval("_root.bloop" + _root.depth)._y = _Y;
  15.    }
  16.    if(nump == 1)
  17.    {
  18.       _root.depth = _root.depth + 1;
  19.       _root.attachMovie("powerup","powerup" + _root.depth,_root.depth);
  20.       eval("_root.powerup" + _root.depth)._x = _X;
  21.       eval("_root.powerup" + _root.depth)._y = _Y;
  22.    }
  23. };
  24.